home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWButtonCell.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  732 b   |  40 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface WWButtonCell:ButtonCell
  5. {
  6.   id    interp;
  7.   int   controlStringSize;
  8.   char  *controlString;
  9.   char  *sprintfControlString;
  10.  
  11.   char  *tclExpression;
  12.   int   tclExpressionSize;
  13.   char  *tclVar;
  14.   int   tclVarSize;
  15.   char  *tclCommand;
  16.   int   tclCommandSize;
  17.   BOOL  tclCommandDirty;
  18. }
  19.  
  20. - init;
  21. - awake;
  22. - write:(NXTypedStream *)stream;
  23. - read:(NXTypedStream *)stream; 
  24.  
  25. - evaluateSelf;
  26.  
  27. - setInterp:newInterp;
  28. - setControlString:(const char *)str;
  29. - (const char *)controlString;
  30. - setTclExpression:(const char *)str;
  31. - (const char *)tclExpression;
  32. - setTclVar:(const char *)varName;
  33. - (const char *)tclVar;
  34. - setTclCommand:(const char *)str;
  35. - (const char *)tclCommand;
  36.  
  37. - updateInterp;
  38.  
  39. @end
  40.